/* Handling of strings with unusual terminators etc */

#ifndef __nfstr_h
#define __nfstr_h

extern char *strcpyC(char *s1, const char *s2);
#define strncpycr strncpyC
extern char *strncpyC(char *s1, const char *s2, int n);
extern int strincmp(const char *s1, const char *s2, int n);
extern char *strcpycomma(char *s1, const char *s2);
extern char *strdupC(const char *s);

#endif
